home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / APXMDIDV.PAK / APXMDDAD.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  2KB  |  61 lines

  1. //----------------------------------------------------------------------------
  2. //  Project ApxMdiDv
  3. //  Borland International
  4. //  Copyright ⌐ 1996. All Rights Reserved.
  5. //
  6. //  SUBSYSTEM:    ApxMdiDv Application
  7. //  FILE:         apxmddad.h
  8. //  AUTHOR:       
  9. //
  10. //  OVERVIEW
  11. //  ~~~~~~~~
  12. //  Class definition for TApxMdiDvAboutDlg (TDialog).
  13. //
  14. //----------------------------------------------------------------------------
  15. #if !defined(apxmddad_h)              // Sentry, use file only if it's not already included.
  16. #define apxmddad_h
  17.  
  18. #include <owl/static.h>
  19.  
  20. #include "apxmddva.rh"                  // Definition of all resources.
  21.  
  22.  
  23. //{{TDialog = TApxMdiDvAboutDlg}}
  24. class TApxMdiDvAboutDlg : public TDialog {
  25.   public:
  26.     TApxMdiDvAboutDlg(TWindow* parent, TResId resId = IDD_ABOUT, TModule* module = 0);
  27.     virtual ~TApxMdiDvAboutDlg();
  28.  
  29. //{{TApxMdiDvAboutDlgVIRTUAL_BEGIN}}
  30.   public:
  31.     void SetupWindow();
  32. //{{TApxMdiDvAboutDlgVIRTUAL_END}}
  33. };    //{{TApxMdiDvAboutDlg}}
  34.  
  35.  
  36. // Reading the VERSIONINFO resource.
  37. //
  38. class TProjectRCVersion {
  39.   public:
  40.     TProjectRCVersion(TModule* module);
  41.     virtual ~TProjectRCVersion();
  42.  
  43.     bool GetProductName(LPSTR& prodName);
  44.     bool GetProductVersion(LPSTR& prodVersion);
  45.     bool GetCopyright(LPSTR& copyright);
  46.     bool GetDebug(LPSTR& debug);
  47.  
  48.   protected:
  49.     uint8 far*  TransBlock;
  50.     void far*   FVData;
  51.  
  52.   private:
  53.     // Don't allow this object to be copied.
  54.     //
  55.     TProjectRCVersion(const TProjectRCVersion&);
  56.     TProjectRCVersion& operator = (const TProjectRCVersion&);
  57. };
  58.  
  59.  
  60. #endif  // apxmddad_h sentry.
  61.